home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 15
/
Amiga Plus Leser CD 15.iso
/
Tools
/
Development
/
mmu
/
MuForce
/
Contributions
/
Sashimi
/
Source
/
SafeRawPutChar.asm
next >
Wrap
Assembly Source File
|
2002-03-12
|
389b
|
26 lines
*
* $Id: SafeRawPutChar.asm 1.1 1998/09/11 22:03:16 olsen Exp olsen $
*
* Sashimi -- intercepts raw serial debugging output on your own machine
*
* Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
* Public Domain
*
* :ts=8
*
section text,code
xref _NewRawPutChar
xdef _SafeRawPutChar
_SafeRawPutChar:
movem.l a0-a1,-(sp)
bsr _NewRawPutChar
movem.l (sp)+,a0-a1
rts
end